.afontify-toast {
  position: fixed;
  width: 500px;
  bottom: 30px;
  right: 30px;
  border-radius: 10px;
  background: #fff;
  padding: 10px 20px 10px 20px;
  border: 4px solid #4070f4;
  overflow: hidden;
  transform: translateX(calc(100% + 30px));
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.35);
  z-index: 100000000000000000;
  display: flex;
}
.afontify-toast.active {
  transform: translateX(0);
}
.afontify-toast .toast-content {
  display: flex;
  align-items: center;
  justify-content: center;
}
.afontify-toast .toast-content .afontify-message {
  display: flex;
  flex-direction: column;
  z-index: 100000000000000000;
}
.afontify-toast .afontify-message .afontify-text {
  font-weight: 600;
  color: #333;
  font-size: 16px;
}
